home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Windows marzen / Macro ToolsWorks 6.31 / tworks.exe / Samples / Detects if notepad.exe is running and kills it on users request.mcr < prev    next >
Text File  |  2003-06-11  |  376b  |  14 lines

  1. <#> 
  2. <#> Sample: Detects if notepad.exe is running and kills it on users request.
  3. <#> 
  4. <cmds>
  5.  
  6. <if_process>(notepad.exe,EXIST)
  7.  
  8.    <msg>(-100,-100,"Notepad.exe is running. Do you want to kill it?","Message",2)
  9.    <if_str>("_vMsgButton==YES")
  10.       <process_kill>(notepad.exe)
  11.    <endif>
  12. <else>
  13.    <msg>(-100,-100,"Notepad.exe is not running.","Message",1)
  14. <endif>